/* General Styles */
section {
  padding: 4rem 0;
  font-family: sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Whistleblowing Banner */
.whistleblowing-banner {
  background-color: #43da87; /* Prada’s blue background */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px; /* desktop height */
  text-align: center;
  padding: 20px;
}

/* Text Styling */
.whistleblowing-content p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 8px;
}

.whistleblowing-content h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .whistleblowing-banner {
    height: 220px;
  }

  .whistleblowing-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .whistleblowing-banner {
    height: 180px;
  }

  .whistleblowing-content p {
    font-size: 12px;
  }

  .whistleblowing-content h2 {
    font-size: 20px;
  }
}

/* Policy Section (Prada-style) */
.policy-section {
  background: #fff;
  padding: 6rem 2rem;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  color: #111;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.policy-container h1 {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border-bottom: 1px solid #111;
  padding-bottom: 1rem;
}

.policy-container h2 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-container p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #333;
}

.policy-container ul,
.policy-container ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.policy-container ul li,
.policy-container ol li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  color: #333;
}

.policy-container a {
  color: #111;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .policy-container h1 {
    font-size: 1.6rem;
  }
  .policy-container h2 {
    font-size: 1.1rem;
  }
  .policy-container p,
  .policy-container li {
    font-size: 0.95rem;
  }
}
